All Packages Class Hierarchy This Package Previous Next Index
Class quicktime.qd3d.camera.CameraRange
java.lang.Object
|
+----quicktime.util.QTByteObject
|
+----quicktime.qd3d.camera.CameraRange
- public final class CameraRange
- extends QTByteObject
- implements Cloneable
CameraRange contains information for the camera's range.
Includes the distance to the nearest projection plane, hither plane,
and the distance to the farthest projection plane, yon plane.
Refer to TQ3CameraRange in QuickDraw3d
-
kNativeSize
- This is the size (the number of bytes) that are required for this class
-
CameraRange()
- Creates a CameraRange object containing no data.
-
CameraRange(float, float)
- Creates a CameraRange object containing given data.
-
clone()
- Returns a copy of this class.
-
getEndianDescriptor()
- Returns the EndianDescriptor for this class.
-
getHither()
- returns the camera range's distance away from the hither plane.
-
getYon()
- returns the camera range's distance away from the yon plane.
-
setHither(float)
- sets the camera range's distance away from the hither plane.
-
setYon(float)
- sets the camera range's distance away from the yon plane.
kNativeSize
public static final int kNativeSize
- This is the size (the number of bytes) that are required for this class
CameraRange
public CameraRange()
- Creates a CameraRange object containing no data.
CameraRange
public CameraRange(float hither,
float yon)
- Creates a CameraRange object containing given data.
- Parameters:
- h - The distance away from the hither plane(nearest to camera).
- y - The distance away from the yon plane(furtherest from camera).
getEndianDescriptor
public static final EndianDescriptor getEndianDescriptor()
- Returns the EndianDescriptor for this class.
- Returns:
- an EndianDescriptor
getHither
public float getHither()
- returns the camera range's distance away from the hither plane.
getYon
public float getYon()
- returns the camera range's distance away from the yon plane.
setHither
public void setHither(float hither)
- sets the camera range's distance away from the hither plane.
setYon
public void setYon(float yon)
- sets the camera range's distance away from the yon plane.
clone
public Object clone()
- Returns a copy of this class.
- Overrides:
- clone in class Object
All Packages Class Hierarchy This Package Previous Next Index